home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / vbcc.lha / vbcc / machines / amiga68k / libsrc / stdlib / rand.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  149 b   |  10 lines

  1. #include <stdlib.h>
  2.  
  3. static unsigned int a=1;
  4.  
  5. int rand(void)
  6. { return (a=a*1103515245+12345)%RAND_MAX; }
  7.  
  8. void srand(unsigned int seed)
  9. { a=seed; }
  10.